From: Debian Science Maintainers Date: Sat, 16 May 2026 09:14:12 +0000 (+0200) Subject: Fix TRSM on Barcelona target (and possibly others) X-Git-Tag: archive/raspbian/0.3.33+ds-3+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=6a2ce6d4c1e9371e0486d8fd86e5915e13e8ca89;p=openblas.git Fix TRSM on Barcelona target (and possibly others) Origin: upstream, https://github.com/OpenMathLib/OpenBLAS/commit/26c4eb65d1b60005d6556e432f4a8989efc5b6e6 Bug: https://github.com/OpenMathLib/OpenBLAS/issues/5787 https://github.com/OpenMathLib/OpenBLAS/issues/5810 Reviewed-by: Sébastien Villemot Last-Update: 2026-05-16 This should fix i386 test failures such as this one: https://buildd.debian.org/status/fetch.php?pkg=openblas&arch=i386&ver=0.3.33%2Bds-1&stamp=1777066182&raw=0 Last-Update: 2026-05-16 Gbp-Pq: Name trsm-barcelona.patch --- diff --git a/interface/trsm.c b/interface/trsm.c index ae35d0d..069df1a 100644 --- a/interface/trsm.c +++ b/interface/trsm.c @@ -381,8 +381,12 @@ if (strcmp(gotoblas_corename(), "armv9sme") == 0 #endif #endif + + +//end of the ifndef CBLAS ... else ... section #endif + if ((args.m == 0) || (args.n == 0)) return; IDEBUG_START; FUNCTION_PROFILE_START();